Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

page.tsx 345B

1234567891011121314
  1. 'use client'
  2. import React from 'react'
  3. import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
  4. import AuthenticatedLayout from '../../components/authenticated-layout'
  5. const Chat = () => {
  6. return (
  7. <AuthenticatedLayout>
  8. <ChatWithHistoryWrap />
  9. </AuthenticatedLayout>
  10. )
  11. }
  12. export default React.memo(Chat)